home *** CD-ROM | disk | FTP | other *** search
- /*
- ** bootstrap.h -- This file is a part of the Atari bootloader.
- **
- ** Copyright 1994 by Björn Brauel
- **
- ** This file is subject to the terms and conditions of the GNU General Public
- ** License. See the file README.legal in the main directory of this archive
- ** for more details.
- **
- */
-
- #ifndef BOOTSTRAP_H
- #define BOOTSTRAP_H
-
-
- extern long get_nlist (const char *fname, const char *symname);
-
-
- void cache_off (void);
- void change_stack(void *);
- void disable_mmu (void);
- void jump_to (unsigned long addr);
- void raise_int(void);
- void *copy_kernel(void);
- void *copy_kernel_end(void);
-
- #endif BOOTSTRAP_H
-